#!/bin/bash

prg=$(which $1)

shift

while [ $# -gt 0 ];
do

 arg=$arg"'"$1"'"" "
 shift

done

#echo $arg

eval python $prg $arg
